home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1996 February / EnigmA AMIGA RUN 04 (1996)(G.R. Edizioni)(IT)[!][issue 1996-02][Skylink CD III].iso / earcd / midi / splib44u.lha / superplay-lib_USR / Install_SPLib < prev    next >
Text File  |  1995-08-26  |  2KB  |  76 lines

  1. ; $VER: Install_SPLib V4.4 (26.8.95)
  2. ; © 1993-95 by Andreas R. Kleinert.
  3. ; This is the Installer Script for superplay.library V4+
  4.  
  5. (set MC68x (database "cpu"))
  6. (set @app-name "SuperPlay-Library")
  7.  
  8. ;(makedir "ENV:SuperPlay-Library")
  9. ;(makedir "ENVARC:SuperPlay-Library")
  10.  
  11. (copylib
  12.   (prompt "Installing superplay.library to LIBS: ...")
  13.   (help @copylib-help)
  14.   (source "libs/superplay.library")
  15.   (set splibdir
  16.               (askdir
  17.                      (prompt "Library Path")
  18.                      (help @askdir-help)
  19.                      (newpath)
  20.                      (default "LIBS:")
  21.               )
  22.   )
  23.   (dest splibdir)
  24. )
  25.  
  26. ;(makedir "SYS:locale")
  27. ;(makedir "SYS:locale/catalogs")
  28.  
  29. ;(copyfiles
  30. ;  (prompt "Installing OS 2.1+ catalog files ...")
  31. ;  (help @copyfiles-help)
  32. ;  (source "locale/catalogs")
  33. ;  (set spcatdir
  34. ;              (askdir
  35. ;                     (prompt "Catalog Path")
  36. ;                     (help @askdir-help)
  37. ;                     (newpath)
  38. ;                     (default "SYS:locale/Catalogs")
  39. ;              )
  40. ;  )
  41. ;  (dest spcatdir)
  42. ;  (all)
  43. ;)
  44.  
  45. (set spobjectdir   (tackon splibdir "spobjects"))
  46. (makedir spobjectdir)
  47.  
  48. (copyfiles
  49.   (prompt "Installing spobjects to LIBS:spobjects ...")
  50.   (help @copyfiles-help)
  51.   (source "libs/spobjects")
  52.   (dest (tackon splibdir "spobjects"))
  53.   (pattern "#?")
  54.   (files)
  55. )
  56.  
  57. (if (>= MC68x 68020)
  58.   (copyfiles
  59.     (prompt "Installing special 68020+ versions of some libraries...")
  60.     (help @copyfiles-help)
  61.     (source "libs/68030")
  62.     (dest (tackon splibdir "spobjects"))
  63.     (all)
  64.   )
  65. )
  66.  
  67. (if (>= MC68x 68040)
  68.   (copyfiles
  69.     (prompt "Installing special 68040+ versions of some libraries...")
  70.     (help @copyfiles-help)
  71.     (source "libs/68040")
  72.     (dest (tackon splibdir "spobjects"))
  73.     (all)
  74.   )
  75. )
  76.